home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / msysjour / ms / s12315 / common.c < prev    next >
Text File  |  1988-03-26  |  271b  |  17 lines

  1. #include <os2.h>
  2. #include <stddef.h>
  3. #include "stdlib.h"
  4. #include "hello.h"
  5.  
  6.  
  7. void MessageInt(hWnd,i,lpText)
  8. HWND hWnd;
  9. int i;
  10. PCH lpText;
  11. {
  12. char tmp[8];
  13.  
  14. itoa(i,tmp,10);
  15. WinMessageBox(HWND_DESKTOP,hWnd,(PCH)tmp,lpText, NULL,MB_OK|MB_ICONEXCLAMATION);
  16. }
  17.